/*======================================================================*\
|| #################################################################### ||
|| # Threadmins by Revan aka Belazor                                  # ||
|| # ---------------------------------------------------------------- # ||
|| # This hack lets you configure users as so-called "threadmins",    # ||
|| # or administrators of one or more threads, each with their own    # ||
|| # individual set of permissions for this thread only.              # ||
|| #								      # ||
|| # Only Administrators with Can Admin Threads permissions can       # ||
|| # add/modify Threadmins.					      # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright 2004-2005 NeoMateria Productions. All Rights Reserved # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.neomateria.net | http://www.neomateria.net/licence    # ||
|| #################################################################### ||
\*======================================================================*/

____________________
Import Product through AdminCP.
____________________

____________________
Upload file to forum folder.
____________________


____________________
Edit postbit(_legacy) template.
____________________

------------
Find:
----------------------
	<if condition="$post['userid'] AND $show['member']">
	<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=addlist&amp;userlist=buddy&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[add_x_to_buddy_list]</phrase></a></td></tr>
	</if>
----------------------


------------
Add Below:
----------------------
	<!-- Begin Threadmins hack -->
	<if condition="$show['threadmin']">
	<tr><td class="vbmenu_option"><a href="threadmin.php?$session[sessionurl]do=manage&amp;t=$thread[threadid]&amp;u=$post[userid]"><phrase 1="$post[username]">$vbphrase[tdm_add_x_to_threadmin_list]</phrase></a></td></tr>
	</if>
	<!-- / End Threadmins hack -->		
----------------------